home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / initrd.lz / initrd / scripts / init-top / framebuffer < prev    next >
Encoding:
Text File  |  2009-10-28  |  2.0 KB  |  93 lines

  1. #!/bin/sh
  2.  
  3. OPTION=USPLASH
  4. PREREQ="udev"
  5. prereqs()
  6. {
  7.     echo "$PREREQ"
  8. }
  9. case $1 in
  10. # get pre-requisites
  11. prereqs)
  12.     prereqs
  13.     exit 0
  14.     ;;
  15. esac
  16.  
  17.  
  18. # The options part of the kernel "video=" argument (i.e. everyting
  19. # after "video=<fbdriver>:") has very inconsistent rules.
  20. #
  21. # Generally the following applies:
  22. # 1) options are comma-separated
  23. # 2) options can be in either of these three forms:
  24. #    <arg>=<value>, <arg>:<value>, <boolean-arg>.
  25. # 3) the "mode" option has the form <xres>x<yres>[M][R][-<bpp>][@<refresh>][i][m]
  26. #    and may or may not start with "mode="
  27. #
  28. # When the options are used with modules, they need to be space-separated
  29. # and the following conversions are needed:
  30. #    <arg>:<value> -> <arg>=<value>
  31. #    <boolean-arg> -> <boolean-arg>=1
  32. #    <modevalue>   -> mode=<modevalue>
  33. parse_video_opts()
  34. {
  35.     local OPTS="$1"
  36.     local IFS=","
  37.  
  38.     # Must be a line like video=<fbdriver>:<opt1>,[opt2]...
  39.     if [ "${OPTS}" = "${OPTS%%:*}" ]; then
  40.         return
  41.     fi
  42.     OPTS="${OPTS#*:}"
  43.     for opt in ${OPTS}; do
  44.         # Already in the "<arg>=<value>" form
  45.         if [ "${opt}" != "${opt#*=}" ]; then
  46.             echo -n "$opt "
  47.         # In the "<arg>:<value>" form
  48.         elif [ "${opt}" != "${opt#*:}" ]; then
  49.             echo -n "${opt%:*}=${opt#*:} "
  50.         # Presumably a modevalue without the "mode=" prefix
  51.         elif [ "${opt}" != "${opt#[0-9]*x[0-9]}" ]; then
  52.             echo -n "mode=$opt "
  53.         # Presumably a boolean
  54.         else
  55.             echo -n "${opt}=1 "
  56.         fi
  57.     done
  58. }
  59.  
  60. FB=""
  61. OPTS=""
  62.  
  63. for x in $(cat /proc/cmdline); do
  64.     case ${x} in
  65.     vga=*)
  66.         FB="vesafb";
  67.         OPTS="";
  68.         ;;
  69.     video=*)
  70.         FB=${x#*=}
  71.         FB="${FB%%:*}"
  72.         OPTS="$(parse_video_opts "${x}")"
  73.     esac
  74. done
  75.  
  76. # Map command line name to module name
  77. case ${FB} in
  78. matroxfb)
  79.     FB=matroxfb_base
  80.     ;;
  81. esac
  82.  
  83. if [ -n "${FB}" ]; then
  84.     # Some framebuffer devices need character devices :-/
  85.     udevadm settle
  86.     MODPROBE_OPTIONS=-q modprobe ${FB} ${OPTS}
  87.     # Wait for the framebuffer devices to be ready
  88.     udevadm settle
  89. else
  90.     # If we have no graphics devices yet, wait for udev to settle
  91.     [ -d /sys/class/graphics/fb0 ] || udevadm settle
  92. fi
  93.